home *** CD-ROM | disk | FTP | other *** search
- on...=on xxx
- |
- end xxx
-
- function...=function xxx
- |
- end xxx
-
- --
-
- on startUp=on startUp
- |
- end startUp
-
- on openProject...=on openProject
- |
- end openProject
-
- on openWindow...=on openWindow
- |
- end openWindow
-
- on openBackground...=on openBackground
- |
- end openBackground
-
- on openCard...=on openCard
- |
- end openCard
-
- --
-
- on closeCard...=on closeCard
- |
- end closeCard
-
- on closeBackground...=on closeBackground
- |
- end closeBackground
-
- on closeWindow...=on closeWindow
- |
- end closeWindow
-
- on closeProject...=on closeProject
- |
- end closeProject
-
- on quitSuperCard...=on quitSuperCard
- |
- end quitSuperCard
-
- --
-
- if...then...=if |<logical>| then <true_statements>
-
- if...then...end=if |<logical>| then
- -- true statements
-
- end if
-
- if...then...else...=if |<logical>| then
- -- true statements
-
- else <false_statements>
-
- if...then...else...end=if |<logical>| then
- -- true statements
-
- else
- -- false statements
-
- end if
-
- if...then...else if...else...end=if |<logical1>| then
- -- logical 1 true statements
-
- else if <logical2> then
- -- logical 2 true statements
-
- else
- -- both false statements
-
- end if
-
- switch...case...end=switch |<condition>|
- case <value1>
- -- case 1 statements
-
- exit switch
- case <value2>
- -- case 2 statements
-
- exit switch
- end switch
-
- --
-
- repeat forever...=repeat forever
- |
- end repeat
-
- repeat for...=repeat for |<value>| times
-
- end repeat
-
- repeat until...=repeat until |<logical>|
-
- end repeat
-
- repeat while...=repeat while |<logical>|
-
- end repeat
-
- repeat with...=repeat with |<variable>| = <value1> to <value2>
-
- end repeat
-
- --
-
- itemDelimiter=put the itemDelimiter into oldDelimiter
- set the itemDelimiter to |<character>|
-
- set the itemDelimiter to oldDelimiter
-
- lineDelimiter=put the lineDelimiter into oldDelimiter
- set the lineDelimiter to |<character>|
-
- set the lineDelimiter to oldDelimiter
-
- lockScreen=set the lockScreen to true
- |
- set the lockScreen to false
-
- lockMessages=set the lockMessages to true
- |
- set the lockMessages to false
-
- multiEffect=set the multiEffect to true
- |
- set the multiEffect to false
-
- numberFormat=put the numberFormat into oldFormat
- set the numberFormat to |<character>|
-
- set the numberFormat to oldFormat
-
- wordDelimiter=put the wordDelimiter into oldDelimiter
- set the wordDelimiter to |<character>|
-
- set the wordDelimiter to oldDelimiter
-
-